home *** CD-ROM | disk | FTP | other *** search
/ The X-Philes (2nd Revision) / The X-Philes Number 1 (1995).iso / xphiles / hp48_2 / vsrc.tar / voyager7_src / ports.h < prev    next >
C/C++ Source or Header  |  1991-02-27  |  495b  |  28 lines

  1. #if !defined(ports_included)
  2. #define ports_included
  3. /*
  4. // Abstract:
  5. //    PORTS.H---Ports
  6. //
  7. //    The Ports C include file defines the interface to the Ports
  8. //    routines.
  9. //
  10. // Author:
  11. //    Derek S. Nickel
  12. //
  13. // Creation date:
  14. //    8 January 1991
  15. //
  16. // History:
  17. // V01-001    Derek S. Nickel         8-JAN-1991
  18. //    Original.
  19. //
  20. */
  21.  
  22. extern void close_port(int port_no);
  23. extern void merge_port(int port_no, char *module);
  24. extern void open_port(int port_no, char *module);
  25. extern void sort_port(int port_no);
  26.  
  27. #endif
  28.